home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / Freeware / ttengine-5.0 / Examples / Background / makefile < prev    next >
Encoding:
Makefile  |  2002-09-29  |  263 b   |  12 lines

  1. CF = -c -msmall-code -m68020 -fbaserel
  2.  
  3. background: background.o startup.o
  4.     gcc -o background -nostartfiles -noixemul -msmall-code -fbaserel startup.o background.o
  5.  
  6. background.o: background.c
  7.     gcc $(CF) $<
  8.  
  9. startup.o: startup.c
  10.     gcc $(CF) -fwritable-strings $<
  11.  
  12.